signUp
Sign up a new user (after firebase sign up)
GraphQL Schema
extend type mutation {
"""Sign up a new user (after firebase sign up)"""
signUp(input: SignUpInput): SignUpPayload
}
Arguments
| Name | Type | Description |
|---|---|---|
| input | [SignUpInput](/04-reference/05-Input Objects/SignUpInput.mdx) |
Response Shape
This mutation returns SignUpPayload
| Name | Type | Description |
|---|---|---|
| success | Boolean! | Whether the mutation was successful |
| error | ErrorType | Error information |